home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / xboard21.lha / xboard-2.1.pl11 / INSTALL < prev    next >
Text File  |  1992-11-19  |  2KB  |  53 lines

  1. #
  2. # To install xboard on your system, you will need to generate a properly
  3. # customized Makefile for it, probably using imake, a program that comes
  4. # with the X Window System.  
  5. #
  6. # Before you do this, you may need to edit the Imakefile.  xboard has
  7. # special code for certain systems that is enabled or disabled by ifdefs
  8. # in xboard.c.  A few systems do not automatically define a symbol that 
  9. # can be used to select the right ifdef, so you have to define it yourself
  10. # in the Imakefile.  Here is a list of ifdef symbols used in xboard.  To
  11. # add one of these, for example FOO, to your Imakefile, add the string -DFOO
  12. # to the end of the DEFINES line, separated by a space from what's already
  13. # there.
  14. #
  15. # IRIX            -- Silicon Graphics IRIX.
  16. # IRIS            -- Old version of Silicon Graphics Iris code; try
  17. #                 IRIX first.
  18. # AIXV3            -- IBM AIX, version 3.
  19. # IBMRTAIX        -- AIX for the IBM RT.  I don't know how this
  20. #                 differs from AIXV3.  Use what works for you.
  21. # ESIX            -- The ESIX operating system.
  22. # SYSTEM_FIVE        -- Unix System V.
  23. # SYSV            -- Unix System V.
  24. # SVR4            -- Unix System V, release 4.
  25. # HPUX or hpux        -- Hewlett-Packard HPUX.
  26. # UNIPLUS        -- Uniplus Unix.
  27. # sun            -- SUN Microsystems.
  28. # RTU            -- I don't know what this is for!
  29. # __STDC__        -- Automatically defined by ANSI C compilers.
  30. # ATTENTION        -- Define this if your version of gnuchess
  31. #                 requires you to get its attention by
  32. #                 hitting ^C when you want to move while it
  33. #                 is thinking on your time.
  34. # HAS_GETTIMEOFDAY    -- Remove this if you don't have the getttimeofday()
  35. #                 system call.
  36. # After editing the Imakefile, you should be able to generate a correct
  37. # Makefile by typing the command "xmkmf" in the xboard source directory.
  38. # This command is supposed to run imake with the right flags for your
  39. # site.  If you get "Command not found," make sure the directory
  40. # containing xmkmf is on your search path.  (It is /usr/local/X11/bin on
  41. # many systems.)  If xmkmf doesn't work, you can try the following
  42. # command, editing the pathnames first if the X release is installed in
  43. # a different place on your system:
  44.  
  45. /usr/local/X11/mit/config/imake \
  46.         -I/usr/local/X11/mit/config \
  47.         -DTOPDIR=/usr/local/X11/mit
  48.  
  49. # Once you have a working Makefile, if you need to make further changes
  50. # to the Imakefile, you can use the command "make Makefile" to update
  51. # the Makefile after you edit the Imakefile.
  52.